//
// Copyright (c) 2009 All Right Reserved
//
// vl
//
// 2009-01-01
// Contains ...
using JetBrains.Annotations;
namespace LargoCommon.Music
{
/// Class of melodic part.
public enum MelodicGenus {
/// Class of part.
[UsedImplicitly] None = 0,
/// Class of part.
Melodic = 1,
/// Class of part.
Harmonic = 2
}
}